Conversation
- TitleSection 컴포넌트 책임 분리 - 배경 관련 로직을 TitleBackground 컴포넌트로 분리 및 children props를 활용한 유용한 컴포넌트 구조 개선 - 각 컴포넌트가 필요한 상태만 구독하도록 개선 - TitleStore 상태 관리 개선 - hasTitleBackground 상태 추가로 배경 변경 관련 로직 개선 - 저장 로직에서 getState() 사용하도록 수정
- EditorToolbar 구조 개선 - 툴바 위치 관련 로직을 ToolbarPosition 컴포넌트로 분리 - 스크롤 이벤트에 따른 불필요한 리렌더링 방지 - EditorToolIcons 컴포넌트 분리 - 블록 관련 로직을 별도 컴포넌트로 분리
- 객체 구조분해할당 방식에서 개별 selector 방식으로 변경
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
Open
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
📝 설명
컴포넌트의 불필요한 리렌더링을 방지하고, 최적화합니다. #21
✅ PR 유형
💻 작업 내용